home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / idl / nsITreeColumns.idl < prev    next >
Text File  |  2006-05-08  |  4KB  |  120 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is Jan Varga.
  17.  * Portions created by the Initial Developer are Copyright (C) 2003
  18.  * the Initial Developer. All Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *
  22.  * Alternatively, the contents of this file may be used under the terms of
  23.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  24.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  25.  * in which case the provisions of the GPL or the LGPL are applicable instead
  26.  * of those above. If you wish to allow use of your version of this file only
  27.  * under the terms of either the GPL or the LGPL, and not to allow others to
  28.  * use your version of this file under the terms of the MPL, indicate your
  29.  * decision by deleting the provisions above and replace them with the notice
  30.  * and other provisions required by the GPL or the LGPL. If you do not delete
  31.  * the provisions above, a recipient may use your version of this file under
  32.  * the terms of any one of the MPL, the GPL or the LGPL.
  33.  *
  34.  * ***** END LICENSE BLOCK ***** */
  35.  
  36. #include "nsISupports.idl"
  37.  
  38. interface nsITreeColumns;
  39. interface nsIDOMElement;
  40. interface nsIAtom;
  41.  
  42. [scriptable, uuid(58a8574d-15a8-4678-99a5-e1be56104093)]
  43. interface nsITreeColumn : nsISupports
  44. {
  45.   readonly attribute nsIDOMElement element;
  46.  
  47.   readonly attribute nsITreeColumns columns;
  48.  
  49.   readonly attribute long x;
  50.   readonly attribute long width;
  51.  
  52.   readonly attribute AString id;
  53.   [noscript] void getIdConst([shared] out wstring idConst);
  54.   [noscript] readonly attribute nsIAtom atom;
  55.  
  56.   readonly attribute long index;
  57.  
  58.   readonly attribute boolean primary;
  59.   readonly attribute boolean cycler;
  60.   readonly attribute boolean editable;
  61.  
  62.   const short TYPE_TEXT                = 1;
  63.   const short TYPE_CHECKBOX            = 2;
  64.   const short TYPE_PROGRESSMETER       = 3;
  65.   readonly attribute short type;
  66.  
  67.   nsITreeColumn getNext();
  68.   nsITreeColumn getPrevious();
  69.  
  70.   void invalidate();
  71. };
  72.  
  73. interface nsITreeBoxObject;
  74.  
  75. [scriptable, uuid(fcc7b6b5-f7d7-4e57-abd1-080602deb21d)]
  76. interface nsITreeColumns : nsISupports
  77. {
  78.   /**
  79.    * The tree widget for these columns.
  80.    */
  81.   readonly attribute nsITreeBoxObject tree;
  82.  
  83.   /**
  84.    * The number of columns.
  85.    */
  86.   readonly attribute long count;
  87.  
  88.   /**
  89.    * Get the first/last column.
  90.    */
  91.   nsITreeColumn getFirstColumn();
  92.   nsITreeColumn getLastColumn();
  93.  
  94.   /**
  95.    * Attribute based column getters.
  96.    */
  97.   nsITreeColumn getPrimaryColumn();
  98.   nsITreeColumn getSortedColumn();
  99.   nsITreeColumn getKeyColumn();
  100.  
  101.   /**
  102.    * Get the column for the given element.
  103.    */
  104.   nsITreeColumn getColumnFor(in nsIDOMElement element);
  105.  
  106.   /**
  107.    * Parametric column getters.
  108.    */
  109.   nsITreeColumn getNamedColumn(in AString id);
  110.   nsITreeColumn getColumnAt(in long index);
  111.  
  112.   /**
  113.    * This method is called whenever a treecol is added or removed and
  114.    * the column cache needs to be rebuilt.
  115.    */
  116.   void invalidateColumns();
  117.  
  118.   void restoreNaturalOrder();
  119. };
  120.